Returned 5 Results for "make" Ordered By Relevance

Make 3.81 (make.exe) download [relevance: 3.39]


2007-07-13 Digg! icurtain Delcious icurtain Technorati icurtain


this is the only portion of cygwin i ever need and as such it's annoying i can never find make.exe online to download - so ive put it here make 3.81


make mod_jk in Debian Sarge [relevance: 2.6]


2007-09-14 Digg! icurtain Delcious icurtain Technorati icurtain


under debian enter the following command to make sure your compiler environment is working

set up your environment with
apt-get install libtool autoconf gcc apache2-prefork-dev
great.. now we are ready to compile

copy the tomcat source native directory over to the server and from within native/ run the following

make sure the support dir is sitting at the same level

./configure --with-apxs=/usr/bin/apxs2
make
make install

then after all that

Libraries have been installed in:
/usr/lib/apache2/modules

Or download a precomiled binary from http://mirror.public-internet.co.uk/ftp/apache/tomcat/tomcat-connectors/jk/binaries/linux/jk-1.2.26/i386/


compile kernel in gentoo [relevance: 2.29]


2008-06-10 Digg! icurtain Delcious icurtain Technorati icurtain


compile kernel in gentoo

cd /usr/src/linux/

make menuconfig

Linux Kernel v2.6.*-gentoo Configuration

make

make modules_install

cp arch/i386/boot/bzImage /boot/kernal-2.6.*-gentoo


Tomcat Installation and Setup on Windows [relevance: 1.46]


2007-09-13 Digg! icurtain Delcious icurtain Technorati icurtain


  1. make sure the file msvcr71.dll is present in the system path 
  2.  
  3. intall java jre 
  4. install tomcat 
  5.  
  6. copy the deployment directory onto the local drive 
  7.  
  8. edit: 
  9.  
  10. ..\Apache Software Foundation\Tomcat 6.0\conf\server.xml 
  11.  
  12. to include the deployment path to the application 
  13.  
  14. this looks like this and should sit inside the following heirachy within the xml document 
  15.  
  16. <Server> 
  17.    <Service> 
  18.       <Engine> 
  19.          <Host> 
  20.             <Context path="/Project" reloadable="true" docBase="C:\Project" workDir="C:\Project\work" /> 
  21.          </Host> 
  22.       </Engine> 
  23.    </Service> 
  24. </Server> 
  25.  
  26. edit: 
  27.  
  28. ..\Project\WEB-INF\web.xml 
  29.  
  30. to make sure the logging directories are set up correctly etc (packages etc) 
  31.  
  32. launch tomcat and deploy the project from the project manager 
  33.  
  34. it should now be available at http://localhost:8080 
  35.  
  36. run emulate from the run.bat batch file - making sure its pointing to the right target within the batch file 
  37.  

Vista Style Buttons CSS [relevance: 1.29]


2008-03-11 Digg! icurtain Delcious icurtain Technorati icurtain


Resizable Vista style buttons with a gradient in XHTML/CSS

As I had to spend an entire afternoon trying to get these to work I might as well post them

To get your lovely Vista Style buttons just screen shot Vista or make a rectangle with 2 gradients that meet.. then add a boarder and blend the corner pixels onto whatever backdrop you want to put them on.

Vista Button CSS

.buttonLeft {
background-image: url(button-right.gif);
background-repeat: no-repeat;
background-position: top right;
display:block;
float:left;
/*external border spacing*/
margin:4px;
}

.buttonRight {
background-image: url(button-left.gif);
background-repeat: no-repeat;
background-position: top left;
display:block;
}

.buttonCentre{
/*line-height pushes the display block to the full height of the containing image*/
line-height:26px;
/*Inner boarders*/
margin-left:4px;
margin-right:4px;
background-image: url(button-centre.gif);
background-repeat: repeat-x ;
background-position: top left;
display:block;
}

span.buttonCentre:hover{
background: url(button-centre-hover.gif) ;
}
span.buttonLeft:hover {
background-image: url(button-right-hover.gif);
}
span.buttonRight:hover {
background-image: url(button-left-hover.gif);
}

And then all you have to do is make a few containing spans and you have your buttons

<span class="buttonLeft">
<span class="buttonRight">
<span class="buttonCentre">
buttonText
</span>
</span>
</span>

like this: buttonText

To conclude - these buttons are infinitely horizontally resizable and do display properly - however the hover does not work perfectly, if you hit the outer nested elements they will hover without making the internal elements hover..