diff options
author | foobar <sniper@php.net> | 2001-12-06 19:01:43 +0000 |
---|---|---|
committer | foobar <sniper@php.net> | 2001-12-06 19:01:43 +0000 |
commit | 7decb9dae5bccaba241d0ca0ac6d0f66e96a305b (patch) | |
tree | 205972d6d00b1afb260031196901e8695354135c | |
parent | c1626365f946cf136fe052e2fc75fb7027963abf (diff) | |
download | php-git-7decb9dae5bccaba241d0ca0ac6d0f66e96a305b.tar.gz |
Fix shared extension linking when compiling with e.g. CGI sapi.
-rw-r--r-- | dynlib.m4 | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -32,7 +32,7 @@ AC_DEFUN(LIB_SHARED_MODULE,[ lib_target="\$(LTLIBRARY_SHARED_NAME)" cat >>$1<<EOF \$(LTLIBRARY_SHARED_NAME): \$(LTLIBRARY_SHARED_OBJECTS) \$(LTLIBRARY_DEPENDENCIES) - \$(SHARED_LIBTOOL) --mode=link \$(COMPILE) \$(LDFLAGS) -o \[$]@ -avoid-version -module -rpath \$(phplibdir) \$(LTLIBRARY_LDFLAGS) \$(LTLIBRARY_OBJECTS) \$(LTLIBRARY_SHARED_LIBADD) + \$(SHARED_LIBTOOL) --mode=link \$(CC) \$(COMMON_FLAGS) \$(CFLAGS_CLEAN) \$(EXTRA_CFLAGS) \$(LDFLAGS) -o \[$]@ -avoid-version -module -rpath \$(phplibdir) \$(LTLIBRARY_LDFLAGS) \$(LTLIBRARY_OBJECTS) \$(LTLIBRARY_SHARED_LIBADD) \$(SHARED_LIBTOOL) --mode=install cp \[$]@ \$(phplibdir) EOF |