diff --git a/CHANGELOG b/CHANGELOG index 189f34b7d..dda4cba8d 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,5 +1,10 @@ # Nmap Changelog ($Id$); -*-text-*- +o [GH#164] Remove the DYLD_LIBRARY_PATH environment variable from + zenmap_wrapper.py, addressing a crash with the error + "dyld: Symbol not found: _iconv Referenced from: /usr/lib/libcups.2.dylib" + Reported by Robert Strom. [Daniel Miller] + o [NSE] Added additional checks for succesful put request in http-put. [Oleg Mitrofanov] o [NSE] Added an update for http-methods that checks all possible methods not in Allow diff --git a/zenmap/install_scripts/macosx/zenmap_wrapper.py b/zenmap/install_scripts/macosx/zenmap_wrapper.py index 574cc1af7..9c3532387 100755 --- a/zenmap/install_scripts/macosx/zenmap_wrapper.py +++ b/zenmap/install_scripts/macosx/zenmap_wrapper.py @@ -131,11 +131,6 @@ if __name__ == "__main__": # bundle to allow running from a read-only filesystem. etcdir = os.path.join(HOME, ".zenmap-etc") - # Override the dynamic library search path. This makes the various GTK+ and - # Pango shared objects look at the bundled copies of the libraries. py2app - # puts .dylibs in Contents/Frameworks. - os.environ["DYLD_LIBRARY_PATH"] = os.path.join(parentdir, "Frameworks") - # See http://library.gnome.org/devel/gtk/2.12/gtk-running.html for the # meaning of the GTK+ environment variables. These files are static and # live inside the application bundle.