Linux: Reverted the build script changes (removed .so) because even with automake 1.8.3, the build system still doesn't produce a liblwjgl.so.0.0.0, only a liblwjgl.0.0.0

This commit is contained in:
Elias Naur 2004-07-21 09:25:53 +00:00
parent 4d8c6ea421
commit ad32e919e0
3 changed files with 3 additions and 3 deletions

View File

@ -203,7 +203,7 @@
<include name="build.sh"/> <include name="build.sh"/>
</fileset> </fileset>
</apply> </apply>
<move file="${lwjgl.src.native}/.libs/liblwjgl.so.0.0.0" tofile="${lwjgl.lib}/liblwjgl.so"/> <move file="${lwjgl.src.native}/.libs/liblwjgl.0.0.0" tofile="${lwjgl.lib}/liblwjgl.so"/>
</target> </target>
<!-- Compiles LWJGL on Mac OS X platforms --> <!-- Compiles LWJGL on Mac OS X platforms -->

View File

@ -3,4 +3,4 @@
./autogen.sh ./autogen.sh
./configure ./configure
make make
strip .libs/liblwjgl.so.0.0.0 strip .libs/liblwjgl.0.0.0

View File

@ -2,7 +2,7 @@
# Process this file with autoconf to produce a configure script. # Process this file with autoconf to produce a configure script.
#AC_PREREQ(2.57) #AC_PREREQ(2.57)
AC_INIT(LWJGL, 0.8) AC_INIT(LWJGL, 0.9)
AM_INIT_AUTOMAKE() AM_INIT_AUTOMAKE()
AC_CONFIG_SRCDIR([autogen.sh]) AC_CONFIG_SRCDIR([autogen.sh])
AM_CONFIG_HEADER([config.h]) AM_CONFIG_HEADER([config.h])