This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>Label</key> | |
<string>com.runlevel1.homebrew.update</string> | |
<key>EnvironmentVariables</key> | |
<dict> | |
<key>TERM</key> | |
<string>ansi</string> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git c/CMakeLists.txt w/CMakeLists.txt | |
index f13542a..95759ef 100644 | |
--- c/CMakeLists.txt | |
+++ w/CMakeLists.txt | |
@@ -208,6 +208,7 @@ ENDIF() | |
# Taken from official documentation (http://www.cmake.org/cmake/help/cmake2.6docs.html#command:install) | |
install( | |
TARGETS ${TARGETS_TO_INSTALL} | |
+ BUNDLE DESTINATION . | |
RUNTIME DESTINATION bin |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git c/src/main.cc w/src/main.cc | |
index ee16e7b..d60ce98 100644 | |
--- c/src/main.cc | |
+++ w/src/main.cc | |
@@ -42,21 +42,23 @@ bool ShotApp::OnInit () { | |
void show_help (char **argv) { | |
printf ("\nShotdetect version \"%s\", Copyright (c) 2007-2013 Johan Mathe\n\n" | |
"Usage: %s \n" | |
- "-h : show this help\n" | |
- "-n : commandline mode (disable GUI)\n" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git c/src/Makefile.include w/src/Makefile.include | |
index b6384ff..b75516c 100644 | |
--- c/src/Makefile.include | |
+++ w/src/Makefile.include | |
@@ -1,11 +1,11 @@ | |
-INSTALL_RUN := install --mode=555 | |
-INSTALL_RO := install --mode=444 | |
-INSTALL_MAN := install --mode=644 | |
-INSTALL_LOCALE := install --mode=644 | |
-LN := ln --symbolic --force --no-dereference |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- configure.in.orig 2013-01-07 16:33:30.000000000 -0800 | |
+++ configure.in 2013-01-07 16:33:59.000000000 -0800 | |
@@ -8,9 +8,9 @@ | |
AC_MSG_RESULT(beginning autoconfiguration process for libnet-${PACKAGE_VERSION} ...) | |
AC_CANONICAL_SYSTEM | |
AC_CONFIG_SRCDIR([src/libnet_build_ip.c]) | |
+AC_CONFIG_HEADERS([include/config.h]) | |
AC_CONFIG_MACRO_DIR([m4]) | |
AM_INIT_AUTOMAKE | |
-AM_CONFIG_HEADER([include/config.h]) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git Makefile.am Makefile.am | |
index 8e3a2f1..fe3901b 100644 | |
--- Makefile.am | |
+++ Makefile.am | |
@@ -2,7 +2,7 @@ | |
include $(top_srcdir)/Makefile.decl | |
SRC_SUBDIRS = gdk gtk modules demos tests perf | |
-SUBDIRS = po po-properties $(SRC_SUBDIRS) docs m4macros build | |
+SUBDIRS = po po-properties $(SRC_SUBDIRS) m4macros build |
NewerOlder