- Timestamp:
- Apr 2, 2006, 7:11:39 PM (19 years ago)
- Location:
- branches/shared_lib
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/shared_lib/Makefile.am
r7264 r7269 2 2 3 3 SUBDIRS = \ 4 src 4 src \ 5 libltdl 5 6 6 7 EXTRA_DIST = CODING-STANDARDS \ -
branches/shared_lib/autogen.sh
r7264 r7269 40 40 #echo "Running gettextize, please ignore non-fatal messages...." 41 41 #$SETUP_GETTEXT 42 #echo "Running libtoolize, please ignore non-fatal messages...."43 #echo n | libtoolize--copy --force || exit;42 echo "Running libtoolize, please ignore non-fatal messages...." 43 echo n | libtoolize --ltdl --copy --force || exit; 44 44 45 45 # Add other directories to this list if people continue to experience -
branches/shared_lib/configure.ac
r7264 r7269 45 45 ######################### 46 46 AC_PROG_CXX 47 48 AC_LIBLTDL_CONVENIENCE 47 49 AC_LIBTOOL_DLOPEN 48 50 AC_PROG_LIBTOOL 49 51 AC_HEADER_STDC 52 AC_CONFIG_SUBDIRS(libltdl) 50 53 51 54 ## THIS IS OUR DEFAULT-DATA-DIRECTORY … … 58 61 #----------------# 59 62 DATA_DIR=$datadir 60 echo \$\{prefix\}61 63 if test $DATA_DIR = \$\{prefix\}/share ; then 62 64 echo "not given" … … 294 296 MSBITFIELDS="-mms-bitfields" 295 297 MWINDOWS="-mwindows" 296 297 298 #--------# 298 299 # MIN-GW # … … 497 498 ## CHECKING FOR HEADERS AND LIBS ## 498 499 ################################### 500 499 501 500 502 AX_CHECK_REQUIRED_HEADER_LIB([ltdl.h], [ltdl], [main],,, [http://www.gnu.org/software/libtool]) … … 650 652 src/lib/parser/ini_parser/Makefile 651 653 src/lib/parser/cmdline_parser/Makefile 652 654 src/lib/parser/preferences/Makefile 653 655 src/util/Makefile 654 656 src/world_entities/Makefile … … 660 662 src/subprojects/network/Makefile 661 663 ]) 662 663 664 AC_OUTPUT -
branches/shared_lib/src/Makefile.am
r7267 r7269 23 23 world_entities/libORXwe.a \ 24 24 util/libORXutils.a \ 25 $(LIBLTDL) \ 25 26 $(libORXlibs_a_LIBRARIES_) \ 26 27 $(GTK2_LIBS) $(GTHREAD_LIBS) $(CURL_LIBS) -
branches/shared_lib/src/orxonox.cc
r7268 r7269 349 349 /// FIXME make this more modular (search for himself for all the libraries 350 350 PRINTF(0)("We are searching for plugins in %s\n", DynamicLoader::getSearchDir()); 351 DynamicLoader::loadDyLib("libORXplayables.la");352 351 DynamicLoader::loadDyLib("libORXweapons.la"); 353 352 DynamicLoader::loadDyLib("libORXprojectiles.la"); … … 357 356 358 357 DynamicLoader::loadDyLib("libORXmisc_entities.la"); 358 359 DynamicLoader::loadDyLib("libORXplayables.la"); 359 360 DynamicLoader::loadDyLib("libORXnpcs.la"); 360 361 printf("%s\n", DynamicLoader::getSearchDir()); -
branches/shared_lib/src/world_entities/Makefile.am
r7268 r7269 41 41 # npcs/npc.cc 42 42 43 LDFLAGS = --export-dynamic -module43 AM_LDFLAGS = --export-dynamic -module 44 44 45 45 pkglib_LTLIBRARIES = \
Note: See TracChangeset
for help on using the changeset viewer.