mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-18 00:10:04 +00:00
Oops, change it so it compiles an aout plugin so it will actually work.
(Damn you Netscape)
This commit is contained in:
parent
e6960d0c8d
commit
5cb8408890
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=19782
@ -1,18 +1,52 @@
|
||||
--- Makefile.orig Mon Feb 15 10:14:46 1999
|
||||
+++ Makefile Mon Feb 15 10:14:24 1999
|
||||
@@ -1,5 +1,5 @@
|
||||
--- Makefile.orig Wed Jan 6 21:43:26 1999
|
||||
+++ Makefile Fri Jun 25 15:29:30 1999
|
||||
@@ -1,12 +1,12 @@
|
||||
# Where is your Plugin Source Development Kit from Netscape?
|
||||
-SDK=/home/hubbe/src/PluginSDK30b5
|
||||
+SDK=../PluginSDK30b5
|
||||
|
||||
# Where is your Xwindows located?
|
||||
X11=/usr/X11/
|
||||
@@ -40,6 +40,8 @@
|
||||
-X11=/usr/X11/
|
||||
+X11=${X11BASE}
|
||||
|
||||
# Linux
|
||||
-CC=gcc -fpic
|
||||
-LD=gcc -shared
|
||||
+#CC=gcc -fpic
|
||||
+#LD=gcc -shared
|
||||
|
||||
# Solaris
|
||||
#CC=gcc -fpic
|
||||
@@ -18,8 +18,8 @@
|
||||
#LD=ld -shared
|
||||
|
||||
# FreeBSD (a.out netscape)
|
||||
-#CC=gcc -fpic -aout
|
||||
-#LD=gcc -shared -aout
|
||||
+CC=gcc -fpic -aout
|
||||
+LD=gcc -shared -aout
|
||||
|
||||
# For other systems, look at the example makefiles in the
|
||||
# PluginSDK30b5/examples/UnixTemplate/Unix directory
|
||||
@@ -41,6 +41,8 @@
|
||||
DEFINES=$(STREAM) -DVERSION=\"$(VERSION)\" # -DDEBUG # -DPLUGIN_TRACE
|
||||
CFLAGS=-O -I$(SDK)/include -I$(X11)/include -DXP_UNIX $(DEFINES)
|
||||
+
|
||||
+all: $(BIN_FILES)
|
||||
|
||||
+all: $(BIN_FILES)
|
||||
+
|
||||
plugger.so: plugger.o common.o
|
||||
$(LD) -o plugger.so plugger.o common.o
|
||||
|
||||
@@ -61,9 +63,9 @@
|
||||
if [ ! -f $$HOME/.netscape/pluggerrc ]; then cp pluggerrc $$HOME/.netscape ; fi
|
||||
|
||||
install: plugger.so
|
||||
- cp plugger.so /usr/local/lib/netscape/plugins/
|
||||
- if [ ! -f /etc/pluggerrc ]; then cp pluggerrc /etc/ ; fi
|
||||
- cp plugger.7 /usr/local/man/man7/
|
||||
+ cp plugger.so ${PREFIX}/lib/netscape/plugins/
|
||||
+ if [ ! -f ${PREFIX}/etc/pluggerrc.sample ]; then cp pluggerrc ${PREFIX}/etc/pluggerrc.sample ; fi
|
||||
+ cp plugger.7 ${PREFIX}/man/man7/
|
||||
|
||||
plugger-$(VERSION).tar.gz: $(BASE_FILES) $(SOURCE_FILES)
|
||||
( DIR=`pwd`;\
|
||||
|
Loading…
Reference in New Issue
Block a user