diff options
author | Daichi GOTO <daichi@FreeBSD.org> | 2005-02-01 08:10:30 +0000 |
---|---|---|
committer | Daichi GOTO <daichi@FreeBSD.org> | 2005-02-01 08:10:30 +0000 |
commit | e6d59dc7f6d16b4b72e2e46864652cadaaca0250 (patch) | |
tree | 6ee5bd37c6a624432db0f284b0b624522fb169f5 /deskutils/fusenshi | |
parent | 03b6a79c500283f82533fb39471b7e0efa7c093d (diff) | |
download | ports-e6d59dc7f6d16b4b72e2e46864652cadaaca0250.tar.gz ports-e6d59dc7f6d16b4b72e2e46864652cadaaca0250.zip |
Notes
Diffstat (limited to 'deskutils/fusenshi')
-rw-r--r-- | deskutils/fusenshi/files/patch-aa | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/deskutils/fusenshi/files/patch-aa b/deskutils/fusenshi/files/patch-aa new file mode 100644 index 000000000000..b386237e54c1 --- /dev/null +++ b/deskutils/fusenshi/files/patch-aa @@ -0,0 +1,50 @@ +--- src/Makefile.orig Tue Dec 28 21:23:40 2004 ++++ src/Makefile Fri Jan 28 23:34:43 2005 +@@ -1,9 +1,9 @@ +-# $Id: Makefile,v 1.4 2004/12/28 12:23:40 ozawa Exp $ ++# $Id: Makefile,v 1.5 2005/01/28 14:38:52 ozawa Exp $ + # + # Copyright 2003- ONGS Inc. All rights reserved. + # + # author: Masanori OZAWA (ozawa@ongs.co.jp) +-# version: $Revision: 1.4 $ ++# version: $Revision: 1.5 $ + # + # Redistribution and use in source and binary forms, with or without + # modification, are permitted provided that the following conditions +@@ -35,8 +35,8 @@ + + LIB_DEPS= gtkmm-2.4 gthread-2.0 libxml-2.0 + +-CPP = g++ +-CPPOPT = -Wall -pipe ++CXX ?= g++ ++CXXOPT = -Wall -pipe + CFLAGS = `pkg-config --cflags ${LIB_DEPS}` \ + -I/usr/local/include -I. -I./include + LIBS = `pkg-config --libs ${LIB_DEPS}` -lintl +@@ -46,9 +46,9 @@ + OBJ = ${SRC:.cpp=.o} + + .ifndef DEBUG +-CPPOPT += -O2 ++CXXOPT += -O2 + .else +-CPPOPT += -g ++CXXOPT += -g + .endif + + .ifndef WITHOUT_NLS +@@ -71,10 +71,10 @@ + all: build + + build: ${OBJ} +- ${CPP} ${CPPOPT} ${LIBS} -o ${TARGET} ${OBJ} ++ ${CXX} ${CXXOPT} ${LIBS} -o ${TARGET} ${OBJ} + + .cpp.o: +- ${CPP} ${CPPOPT} ${CFLAGS} -o ${<:.cpp=.o} -c $< ++ ${CXX} ${CXXOPT} ${CFLAGS} -o ${<:.cpp=.o} -c $< + + install: + install -c -m 755 ${TARGET} ${PREFIX}/bin/ |