diff options
author | Kurt Zenker <kz@openoffice.org> | 2005-05-31 15:32:06 +0000 |
---|---|---|
committer | Kurt Zenker <kz@openoffice.org> | 2005-05-31 15:32:06 +0000 |
commit | 51fec8795d23102f75c3c9da36467706a9751f44 (patch) | |
tree | 19ad968c5bd8dff4c12635d22e9bfa43469ace79 /crashrep/source | |
parent | e81f4f17b7c076943bd16b0046d373c87659c489 (diff) |
INTEGRATION: CWS freebsd03 (1.14.16); FILE MERGED
2005/05/25 02:58:16 maho 1.14.16.1: omit -ldl from crashrep/source/unx/makefile.mk, since FreeBSD
doesn't have -ldl
Issue number: #i49679#
Diffstat (limited to 'crashrep/source')
-rwxr-xr-x | crashrep/source/unx/makefile.mk | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/crashrep/source/unx/makefile.mk b/crashrep/source/unx/makefile.mk index 447026df0fdd..8b048eebc954 100755 --- a/crashrep/source/unx/makefile.mk +++ b/crashrep/source/unx/makefile.mk @@ -2,9 +2,9 @@ # # $RCSfile: makefile.mk,v $ # -# $Revision: 1.14 $ +# $Revision: 1.15 $ # -# last change: $Author: vg $ $Date: 2005-03-08 16:24:14 $ +# last change: $Author: kz $ $Date: 2005-05-31 16:32:06 $ # # The Contents of this file are made available subject to the terms of # either of the following licenses @@ -82,7 +82,10 @@ APP1NOSAL=TRUE APP1TARGET=$(TARGET) APP1OBJS=$(OBJFILES) -APP1STDLIBS=$(DYNAMIC) -lXext -lX11 -ldl -lnsl +APP1STDLIBS=$(DYNAMIC) -lXext -lX11 +.IF "$(OS)" != "FREEBSD" +APP1STDLIBS+=-ldl -lnsl +.ENDIF .IF "$(OS)" == "SOLARIS" APP1STDLIBS+=-lsocket .ENDIF |