<?xml version="1.0" encoding="UTF-8"?><rss
version="2.0"
xmlns:content="http://purl.org/rss/1.0/modules/content/"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:atom="http://www.w3.org/2005/Atom"
xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
> <channel><title>Comments on: MakeNSIS on Linux</title> <atom:link href="http://mohanjith.net/blog/2007/08/makensis-on-linux.html/feed" rel="self" type="application/rss+xml" /><link>http://mohanjith.net/blog/2007/08/makensis-on-linux.html</link> <description>MOHA blogging news and thoughts...</description> <lastBuildDate>Thu, 22 Sep 2011 17:18:00 +0000</lastBuildDate> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.3</generator> <item><title>By: Guillaume</title><link>http://mohanjith.net/blog/2007/08/makensis-on-linux.html/comment-page-1#comment-34750</link> <dc:creator>Guillaume</dc:creator> <pubDate>Thu, 30 Jun 2011 08:03:51 +0000</pubDate> <guid
isPermaLink="false">http://mohanjith.net/wordpress/?p=18#comment-34750</guid> <description>If you encounter issues with Stubs not foundYou can use the script hereunder (save it as nsis-install.sh, then make it executable &quot;chmod a+x nsis-install.sh&quot;, then just launch it ./nsis-install.sh). You may get prompted to remove a directory if it already exists (make sure that it is not a problem to remove it or adapt the script to use another location)#!/bin/bash
#
# Author: Guillaume Polet
#
# Copyright: Public domain. You may copy, redistribute, modify this file
# without any further obligation.
# This files comes with absolutely no WARRANTY of ANY kind! The author shall
# not be responsible for ANY DAMAGE or PROBLEM of ANY kind that could have
# been caused by this file. Use this file at your OWN risk!
#
# Ok this script may suck but it works! Feel free to optimize it, and if you are a cool dude, put it back online.# A few vars to adapt if you want
ROOT_DIR=/usr/local/share
NSIS_DIR=nsis
NSIS_ABS_DIR=$ROOT_DIR/$NSIS_DIR
NSIS_VER=2.46
NSIS_SRC_FILE=nsis-$NSIS_VER-src.tar.bz2
NSIS_BIN_FILE=nsis-$NSIS_VER.zip# First go to where we will unzip the sources
TMP=$(mktemp -d /tmp/nsis.XXXXXXXXXX) &#124;&#124; { echo &quot;Failed to create temp dir&quot;; exit 1; }
cd $TMP
wget http://ovh.dl.sourceforge.net/project/nsis/NSIS%202/$NSIS_VER/$NSIS_SRC_FILE
tar xvjf $NSIS_SRC_FILE# Then we grab the binaries and install it
mkdir -p $ROOT_DIR
cd $ROOT_DIR
if [ -d &quot;$NSIS_ABS_DIR&quot; ]; then
echo &quot;$NSIS_ABS_DIR already exists, would you like to remove all of its content? (No undo possible!!!) (Y/N)&quot;
read empty_dir
if [[ $empty_dir == &quot;Y&quot; &#124;&#124;  $empty_dir == &quot;Yes&quot; ]]; then
rm -Rf $NSIS_ABS_DIR
else
echo &quot;directory not empty, cannot proceed.&quot;
exit 1
fi
fiwget http://kent.dl.sourceforge.net/project/nsis/NSIS%202/$NSIS_VER/$NSIS_BIN_FILE
unzip $NSIS_BIN_FILE# Rename the binary folder
mv nsis-$NSIS_VER $NSIS_DIRcd $TMP/nsis-$NSIS_VER-src
# We compile the program.
# The PREFIX argument provides an absolute path against which a bunch of
# relative path will be concatenated during build to install a bunch of stuff
#
# The PREFIX_BIN indicates where the built binary will be copied
#
# The PREFIX_DATA argument is very important as it gives an absolute path
# against which relative path for plugins, includes, stubs, contrib,
# win32 binaries--&gt;this path will be coded in the built binary
#
# The VERSION argument is just for output of the makensis command when running
# it without arguments
#
# Use scons -h to see all arguments possible (there are tons of them)
scons SKIPSTUBS=all SKIPPLUGINS=all SKIPUTILS=all SKIPMISC=all PREFIX=$NSIS_ABS_DIR PREFIX_BIN=$NSIS_ABS_DIR PREFIX_DATA=$NSIS_ABS_DIR VERSION=$NSIS_VER install-compiler# Finally, we install the built file in /usr/bin to make it available from the command line
echo &quot;Installing $NSIS_ABS_DIR/makensis into /usr/bin/makensis&quot;
ln -sf $NSIS_ABS_DIR/makensis /usr/bin/makensis# Let&#039;s clean-up a bit
cd $ROOT_DIR/
rm $NSIS_BIN_FILE
rm -Rf $TMP</description> <content:encoded><![CDATA[<p>If you encounter issues with Stubs not found</p><p>You can use the script hereunder (save it as nsis-install.sh, then make it executable &#8220;chmod a+x nsis-install.sh&#8221;, then just launch it ./nsis-install.sh). You may get prompted to remove a directory if it already exists (make sure that it is not a problem to remove it or adapt the script to use another location)</p><p>#!/bin/bash<br
/> #<br
/> # Author: Guillaume Polet<br
/> #<br
/> # Copyright: Public domain. You may copy, redistribute, modify this file<br
/> # without any further obligation.<br
/> # This files comes with absolutely no WARRANTY of ANY kind! The author shall<br
/> # not be responsible for ANY DAMAGE or PROBLEM of ANY kind that could have<br
/> # been caused by this file. Use this file at your OWN risk!<br
/> #<br
/> # Ok this script may suck but it works! Feel free to optimize it, and if you are a cool dude, put it back online.</p><p># A few vars to adapt if you want<br
/> ROOT_DIR=/usr/local/share<br
/> NSIS_DIR=nsis<br
/> NSIS_ABS_DIR=$ROOT_DIR/$NSIS_DIR<br
/> NSIS_VER=2.46<br
/> NSIS_SRC_FILE=nsis-$NSIS_VER-src.tar.bz2<br
/> NSIS_BIN_FILE=nsis-$NSIS_VER.zip</p><p># First go to where we will unzip the sources<br
/> TMP=$(mktemp -d /tmp/nsis.XXXXXXXXXX) || { echo &#8220;Failed to create temp dir&#8221;; exit 1; }<br
/> cd $TMP<br
/> wget <a
href="http://ovh.dl.sourceforge.net/project/nsis/NSIS%202/$NSIS_VER/$NSIS_SRC_FILE" rel="nofollow">http://ovh.dl.sourceforge.net/project/nsis/NSIS%202/$NSIS_VER/$NSIS_SRC_FILE</a><br
/> tar xvjf $NSIS_SRC_FILE</p><p># Then we grab the binaries and install it<br
/> mkdir -p $ROOT_DIR<br
/> cd $ROOT_DIR<br
/> if [ -d "$NSIS_ABS_DIR" ]; then<br
/> echo &#8220;$NSIS_ABS_DIR already exists, would you like to remove all of its content? (No undo possible!!!) (Y/N)&#8221;<br
/> read empty_dir<br
/> if [[ $empty_dir == "Y" ||  $empty_dir == "Yes" ]]; then<br
/> rm -Rf $NSIS_ABS_DIR<br
/> else<br
/> echo &#8220;directory not empty, cannot proceed.&#8221;<br
/> exit 1<br
/> fi<br
/> fi</p><p>wget <a
href="http://kent.dl.sourceforge.net/project/nsis/NSIS%202/$NSIS_VER/$NSIS_BIN_FILE" rel="nofollow">http://kent.dl.sourceforge.net/project/nsis/NSIS%202/$NSIS_VER/$NSIS_BIN_FILE</a><br
/> unzip $NSIS_BIN_FILE</p><p># Rename the binary folder<br
/> mv nsis-$NSIS_VER $NSIS_DIR</p><p>cd $TMP/nsis-$NSIS_VER-src<br
/> # We compile the program.<br
/> # The PREFIX argument provides an absolute path against which a bunch of<br
/> # relative path will be concatenated during build to install a bunch of stuff<br
/> #<br
/> # The PREFIX_BIN indicates where the built binary will be copied<br
/> #<br
/> # The PREFIX_DATA argument is very important as it gives an absolute path<br
/> # against which relative path for plugins, includes, stubs, contrib,<br
/> # win32 binaries&#8211;&gt;this path will be coded in the built binary<br
/> #<br
/> # The VERSION argument is just for output of the makensis command when running<br
/> # it without arguments<br
/> #<br
/> # Use scons -h to see all arguments possible (there are tons of them)<br
/> scons SKIPSTUBS=all SKIPPLUGINS=all SKIPUTILS=all SKIPMISC=all PREFIX=$NSIS_ABS_DIR PREFIX_BIN=$NSIS_ABS_DIR PREFIX_DATA=$NSIS_ABS_DIR VERSION=$NSIS_VER install-compiler</p><p># Finally, we install the built file in /usr/bin to make it available from the command line<br
/> echo &#8220;Installing $NSIS_ABS_DIR/makensis into /usr/bin/makensis&#8221;<br
/> ln -sf $NSIS_ABS_DIR/makensis /usr/bin/makensis</p><p># Let&#8217;s clean-up a bit<br
/> cd $ROOT_DIR/<br
/> rm $NSIS_BIN_FILE<br
/> rm -Rf $TMP</p> ]]></content:encoded> </item> <item><title>By: akshay</title><link>http://mohanjith.net/blog/2007/08/makensis-on-linux.html/comment-page-1#comment-27682</link> <dc:creator>akshay</dc:creator> <pubDate>Fri, 11 Feb 2011 09:12:07 +0000</pubDate> <guid
isPermaLink="false">http://mohanjith.net/wordpress/?p=18#comment-27682</guid> <description>Hi ,I am trying to run the scons on solaris ,but it throws me below error.please help.
scons SKIPSTUBS=all SKIPPLUGINS=all SKIPUTILS=all SKIPMISC=all NSIS_CONFIG_CONST_DATA_PATH=no PREFIX=/home/amhatre4/nsis/nsis-2.46/ install-compiler
File &quot;/home/amhatre4/nsis/scons-2.0.1/script/scons&quot;, line 140
temp = [os.path.join(x, &#039;lib&#039;) for x in prefs]
^
SyntaxError: invalid syntax</description> <content:encoded><![CDATA[<p>Hi ,I am trying to run the scons on solaris ,but it throws me below error.please help.<br
/> scons SKIPSTUBS=all SKIPPLUGINS=all SKIPUTILS=all SKIPMISC=all NSIS_CONFIG_CONST_DATA_PATH=no PREFIX=/home/amhatre4/nsis/nsis-2.46/ install-compiler<br
/> File &#8220;/home/amhatre4/nsis/scons-2.0.1/script/scons&#8221;, line 140<br
/> temp = [os.path.join(x, 'lib') for x in prefs]<br
/> ^<br
/> SyntaxError: invalid syntax</p> ]]></content:encoded> </item> <item><title>By: Sushma</title><link>http://mohanjith.net/blog/2007/08/makensis-on-linux.html/comment-page-1#comment-14425</link> <dc:creator>Sushma</dc:creator> <pubDate>Tue, 16 Feb 2010 10:56:47 +0000</pubDate> <guid
isPermaLink="false">http://mohanjith.net/wordpress/?p=18#comment-14425</guid> <description>Hi Mohanjith,Even I am also getting the same error as Umesh. I tried with above options but it didn&#039;t work.
Please can you suggest any other solution.</description> <content:encoded><![CDATA[<p>Hi Mohanjith,</p><p>Even I am also getting the same error as Umesh. I tried with above options but it didn&#8217;t work.<br
/> Please can you suggest any other solution.</p> ]]></content:encoded> </item> <item><title>By: S H Mohanjith</title><link>http://mohanjith.net/blog/2007/08/makensis-on-linux.html/comment-page-1#comment-10890</link> <dc:creator>S H Mohanjith</dc:creator> <pubDate>Thu, 29 Oct 2009 07:39:13 +0000</pubDate> <guid
isPermaLink="false">http://mohanjith.net/wordpress/?p=18#comment-10890</guid> <description>I don&#039;t have access to a 32 bit installation right now, can you try with the following from the nsis source directory.scons SKIPSTUBS=all SKIPPLUGINS=all SKIPUTILS=all SKIPMISC=all NSIS_CONFIG_CONST_DATA_PATH=no PREFIX=/path/to/extracted/zip install-compilerscons NSIS_CONFIG_CONST_DATA_PATH=no PREFIX=/path/to/extracted/zip /path/to/extracted/zip/LibraryLocal</description> <content:encoded><![CDATA[<p>I don&#8217;t have access to a 32 bit installation right now, can you try with the following from the nsis source directory.</p><p>scons SKIPSTUBS=all SKIPPLUGINS=all SKIPUTILS=all SKIPMISC=all NSIS_CONFIG_CONST_DATA_PATH=no PREFIX=/path/to/extracted/zip install-compiler</p><p>scons NSIS_CONFIG_CONST_DATA_PATH=no PREFIX=/path/to/extracted/zip /path/to/extracted/zip/LibraryLocal</p> ]]></content:encoded> </item> <item><title>By: Umesh</title><link>http://mohanjith.net/blog/2007/08/makensis-on-linux.html/comment-page-1#comment-10888</link> <dc:creator>Umesh</dc:creator> <pubDate>Thu, 29 Oct 2009 06:42:44 +0000</pubDate> <guid
isPermaLink="false">http://mohanjith.net/wordpress/?p=18#comment-10888</guid> <description>Hi,May i know the reason for this exception</description> <content:encoded><![CDATA[<p>Hi,</p><p> May i know the reason for this exception</p> ]]></content:encoded> </item> <item><title>By: Umesh</title><link>http://mohanjith.net/blog/2007/08/makensis-on-linux.html/comment-page-1#comment-10873</link> <dc:creator>Umesh</dc:creator> <pubDate>Wed, 28 Oct 2009 09:31:04 +0000</pubDate> <guid
isPermaLink="false">http://mohanjith.net/wordpress/?p=18#comment-10873</guid> <description>Hi,
Please find the errorscons: Reading SConscript files ...
Mkdir(&quot;build/release/config&quot;)
scons: *** build/release/config: File exists
Delete(&quot;nsis-28-Oct-2009.cvs&quot;)
Delete(&quot;.instdist&quot;)
Delete(&quot;.test&quot;)
Using GNU tools configuration
Checking for compiler flag -m32... (cached) yes
Checking for linker flag -m32... (cached) yes
Checking for linker flag $MAP_FLAG... (cached) yes
Checking for linker flag -s... (cached) yes
Checking for linker flag $MAP_FLAG... (cached) yes
Checking for compiler flag -m32... (cached) yes
Checking for linker flag -m32... (cached) yes
Checking for linker flag -s... (cached) yes
Checking for compiler flag -m32... (cached) yes
Checking for linker flag -m32... (cached) yes
Checking for memcpy requirement... (cached) yes
Checking for memset requirement... (cached) yes
Checking for linker flag -pthread... (cached) yes
Checking for __BIG_ENDIAN__... (cached) no
Checking for C library gdi32... (cached) no
Checking for C library user32... (cached) no
Checking for C library pthread... (cached) yes
Checking for C library iconv... (cached) no
Checking for C library dl... (cached) yes
Checking for C library gdi32... (cached) no
Checking for C library iconv... (cached) no
Checking for C library pthread... (cached) yes
Checking for C library user32... (cached) no
Checking for C++ library cppunit... (cached) no
scons: done reading SConscript files.
scons: Building targets ...
gcc -o build/release/ExDLL/pluginapi.o -c -Os -Wall -fno-strict-aliasing &quot;-DNSISCALL= __attribute__((__stdcall__))&quot; -ISource/exehead Contrib/ExDLL/pluginapi.c
Contrib/ExDLL/pluginapi.c:1:21: error: windows.h: No such file or directory
In file included from Contrib/ExDLL/pluginapi.h:8,
from Contrib/ExDLL/pluginapi.c:3:
Source/exehead/api.h:37: error: expected declaration specifiers or &#039;...&#039; before &#039;*&#039; token
Source/exehead/api.h:37: warning: type defaults to &#039;int&#039; in declaration of &#039;UINT_PTR&#039;
Source/exehead/api.h:37: error: &#039;UINT_PTR&#039; declared as function returning a function
Source/exehead/api.h:66: error: expected declaration specifiers or &#039;...&#039; before &#039;HWND&#039;
Source/exehead/api.h:68: warning: parameter names (without types) in function declaration
Contrib/ExDLL/pluginapi.c: In function &#039;popstring&#039;:
Contrib/ExDLL/pluginapi.c:16: warning: implicit declaration of function &#039;lstrcpyA&#039;
Contrib/ExDLL/pluginapi.c:18: warning: implicit declaration of function &#039;GlobalFree&#039;
Contrib/ExDLL/pluginapi.c:18: error: &#039;HGLOBAL&#039; undeclared (first use in this function)
Contrib/ExDLL/pluginapi.c:18: error: (Each undeclared identifier is reported only once
Contrib/ExDLL/pluginapi.c:18: error: for each function it appears in.)
Contrib/ExDLL/pluginapi.c:18: error: expected &#039;)&#039; before &#039;th&#039;
Contrib/ExDLL/pluginapi.c: In function &#039;popstringn&#039;:
Contrib/ExDLL/pluginapi.c:27: warning: implicit declaration of function &#039;lstrcpynA&#039;
Contrib/ExDLL/pluginapi.c:29: error: &#039;HGLOBAL&#039; undeclared (first use in this function)
Contrib/ExDLL/pluginapi.c:29: error: expected &#039;)&#039; before &#039;th&#039;
Contrib/ExDLL/pluginapi.c: In function &#039;pushstring&#039;:
Contrib/ExDLL/pluginapi.c:37: warning: implicit declaration of function &#039;GlobalAlloc&#039;
Contrib/ExDLL/pluginapi.c:37: error: &#039;GPTR&#039; undeclared (first use in this function)
Contrib/ExDLL/pluginapi.c: In function &#039;getuservariable&#039;:
Contrib/ExDLL/pluginapi.c:45: error: &#039;NULL&#039; undeclared (first use in this function)
Contrib/ExDLL/pluginapi.c: In function &#039;setuservariable&#039;:
Contrib/ExDLL/pluginapi.c:51: error: &#039;NULL&#039; undeclared (first use in this function)
Contrib/ExDLL/pluginapi.c: In function &#039;pushint&#039;:
Contrib/ExDLL/pluginapi.c:189: warning: implicit declaration of function &#039;wsprintf&#039;
scons: *** [build/release/ExDLL/pluginapi.o] Error 1
scons: building terminated because of errors.</description> <content:encoded><![CDATA[<p>Hi,</p><p> Please find the error</p><p>scons: Reading SConscript files &#8230;<br
/> Mkdir(&#8220;build/release/config&#8221;)<br
/> scons: *** build/release/config: File exists<br
/> Delete(&#8220;nsis-28-Oct-2009.cvs&#8221;)<br
/> Delete(&#8220;.instdist&#8221;)<br
/> Delete(&#8220;.test&#8221;)<br
/> Using GNU tools configuration<br
/> Checking for compiler flag -m32&#8230; (cached) yes<br
/> Checking for linker flag -m32&#8230; (cached) yes<br
/> Checking for linker flag $MAP_FLAG&#8230; (cached) yes<br
/> Checking for linker flag -s&#8230; (cached) yes<br
/> Checking for linker flag $MAP_FLAG&#8230; (cached) yes<br
/> Checking for compiler flag -m32&#8230; (cached) yes<br
/> Checking for linker flag -m32&#8230; (cached) yes<br
/> Checking for linker flag -s&#8230; (cached) yes<br
/> Checking for compiler flag -m32&#8230; (cached) yes<br
/> Checking for linker flag -m32&#8230; (cached) yes<br
/> Checking for memcpy requirement&#8230; (cached) yes<br
/> Checking for memset requirement&#8230; (cached) yes<br
/> Checking for linker flag -pthread&#8230; (cached) yes<br
/> Checking for __BIG_ENDIAN__&#8230; (cached) no<br
/> Checking for C library gdi32&#8230; (cached) no<br
/> Checking for C library user32&#8230; (cached) no<br
/> Checking for C library pthread&#8230; (cached) yes<br
/> Checking for C library iconv&#8230; (cached) no<br
/> Checking for C library dl&#8230; (cached) yes<br
/> Checking for C library gdi32&#8230; (cached) no<br
/> Checking for C library iconv&#8230; (cached) no<br
/> Checking for C library pthread&#8230; (cached) yes<br
/> Checking for C library user32&#8230; (cached) no<br
/> Checking for C++ library cppunit&#8230; (cached) no<br
/> scons: done reading SConscript files.<br
/> scons: Building targets &#8230;<br
/> gcc -o build/release/ExDLL/pluginapi.o -c -Os -Wall -fno-strict-aliasing &#8220;-DNSISCALL= __attribute__((__stdcall__))&#8221; -ISource/exehead Contrib/ExDLL/pluginapi.c<br
/> Contrib/ExDLL/pluginapi.c:1:21: error: windows.h: No such file or directory<br
/> In file included from Contrib/ExDLL/pluginapi.h:8,<br
/> from Contrib/ExDLL/pluginapi.c:3:<br
/> Source/exehead/api.h:37: error: expected declaration specifiers or &#8216;&#8230;&#8217; before &#8216;*&#8217; token<br
/> Source/exehead/api.h:37: warning: type defaults to &#8216;int&#8217; in declaration of &#8216;UINT_PTR&#8217;<br
/> Source/exehead/api.h:37: error: &#8216;UINT_PTR&#8217; declared as function returning a function<br
/> Source/exehead/api.h:66: error: expected declaration specifiers or &#8216;&#8230;&#8217; before &#8216;HWND&#8217;<br
/> Source/exehead/api.h:68: warning: parameter names (without types) in function declaration<br
/> Contrib/ExDLL/pluginapi.c: In function &#8216;popstring&#8217;:<br
/> Contrib/ExDLL/pluginapi.c:16: warning: implicit declaration of function &#8216;lstrcpyA&#8217;<br
/> Contrib/ExDLL/pluginapi.c:18: warning: implicit declaration of function &#8216;GlobalFree&#8217;<br
/> Contrib/ExDLL/pluginapi.c:18: error: &#8216;HGLOBAL&#8217; undeclared (first use in this function)<br
/> Contrib/ExDLL/pluginapi.c:18: error: (Each undeclared identifier is reported only once<br
/> Contrib/ExDLL/pluginapi.c:18: error: for each function it appears in.)<br
/> Contrib/ExDLL/pluginapi.c:18: error: expected &#8216;)&#8217; before &#8216;th&#8217;<br
/> Contrib/ExDLL/pluginapi.c: In function &#8216;popstringn&#8217;:<br
/> Contrib/ExDLL/pluginapi.c:27: warning: implicit declaration of function &#8216;lstrcpynA&#8217;<br
/> Contrib/ExDLL/pluginapi.c:29: error: &#8216;HGLOBAL&#8217; undeclared (first use in this function)<br
/> Contrib/ExDLL/pluginapi.c:29: error: expected &#8216;)&#8217; before &#8216;th&#8217;<br
/> Contrib/ExDLL/pluginapi.c: In function &#8216;pushstring&#8217;:<br
/> Contrib/ExDLL/pluginapi.c:37: warning: implicit declaration of function &#8216;GlobalAlloc&#8217;<br
/> Contrib/ExDLL/pluginapi.c:37: error: &#8216;GPTR&#8217; undeclared (first use in this function)<br
/> Contrib/ExDLL/pluginapi.c: In function &#8216;getuservariable&#8217;:<br
/> Contrib/ExDLL/pluginapi.c:45: error: &#8216;NULL&#8217; undeclared (first use in this function)<br
/> Contrib/ExDLL/pluginapi.c: In function &#8216;setuservariable&#8217;:<br
/> Contrib/ExDLL/pluginapi.c:51: error: &#8216;NULL&#8217; undeclared (first use in this function)<br
/> Contrib/ExDLL/pluginapi.c: In function &#8216;pushint&#8217;:<br
/> Contrib/ExDLL/pluginapi.c:189: warning: implicit declaration of function &#8216;wsprintf&#8217;<br
/> scons: *** [build/release/ExDLL/pluginapi.o] Error 1<br
/> scons: building terminated because of errors.</p> ]]></content:encoded> </item> <item><title>By: S H Mohanjith</title><link>http://mohanjith.net/blog/2007/08/makensis-on-linux.html/comment-page-1#comment-10871</link> <dc:creator>S H Mohanjith</dc:creator> <pubDate>Wed, 28 Oct 2009 09:24:21 +0000</pubDate> <guid
isPermaLink="false">http://mohanjith.net/wordpress/?p=18#comment-10871</guid> <description>Can you please post the exception?</description> <content:encoded><![CDATA[<p>Can you please post the exception?</p> ]]></content:encoded> </item> <item><title>By: Umesh</title><link>http://mohanjith.net/blog/2007/08/makensis-on-linux.html/comment-page-1#comment-10870</link> <dc:creator>Umesh</dc:creator> <pubDate>Wed, 28 Oct 2009 09:22:05 +0000</pubDate> <guid
isPermaLink="false">http://mohanjith.net/wordpress/?p=18#comment-10870</guid> <description>Hi,While running the below command im getting some exception.scons SKIPSTUBS=all SKIPPLUGINS=all SKIPUTILS=all SKIPMISC=all</description> <content:encoded><![CDATA[<p>Hi,</p><p> While running the below command im getting some exception.</p><p>scons SKIPSTUBS=all SKIPPLUGINS=all SKIPUTILS=all SKIPMISC=all</p> ]]></content:encoded> </item> <item><title>By: S H Mohanjith</title><link>http://mohanjith.net/blog/2007/08/makensis-on-linux.html/comment-page-1#comment-10865</link> <dc:creator>S H Mohanjith</dc:creator> <pubDate>Wed, 28 Oct 2009 07:20:34 +0000</pubDate> <guid
isPermaLink="false">http://mohanjith.net/wordpress/?p=18#comment-10865</guid> <description>You can make the installed on Linux but you can&#039;t use it on Linux (without Wine or similar). Using NSIS compiler (makensis) on Linux is what this blog post is about.At best you are confused.</description> <content:encoded><![CDATA[<p>You can make the installed on Linux but you can&#8217;t use it on Linux (without Wine or similar). Using NSIS compiler (makensis) on Linux is what this blog post is about.</p><p>At best you are confused.</p> ]]></content:encoded> </item> <item><title>By: Umesh</title><link>http://mohanjith.net/blog/2007/08/makensis-on-linux.html/comment-page-1#comment-10864</link> <dc:creator>Umesh</dc:creator> <pubDate>Wed, 28 Oct 2009 07:02:28 +0000</pubDate> <guid
isPermaLink="false">http://mohanjith.net/wordpress/?p=18#comment-10864</guid> <description>Hi,Thanks for the above reply.But in some sites they have told that we can have a makensis compiler for Linux with the help of windows source. I tried i got a compiler for Linux. With the help of that is it possible to create installer package for linux</description> <content:encoded><![CDATA[<p>Hi,</p><p> Thanks for the above reply.But in some sites they have told that we can have a makensis compiler for Linux with the help of windows source. I tried i got a compiler for Linux. With the help of that is it possible to create installer package for linux</p> ]]></content:encoded> </item> <item><title>By: S H Mohanjith</title><link>http://mohanjith.net/blog/2007/08/makensis-on-linux.html/comment-page-1#comment-10860</link> <dc:creator>S H Mohanjith</dc:creator> <pubDate>Wed, 28 Oct 2009 06:39:17 +0000</pubDate> <guid
isPermaLink="false">http://mohanjith.net/wordpress/?p=18#comment-10860</guid> <description>See http://nsis.sourceforge.net/Main_Page, NSIS for making Windows Installers</description> <content:encoded><![CDATA[<p>See <a
href="http://nsis.sourceforge.net/Main_Page" rel="nofollow">http://nsis.sourceforge.net/Main_Page</a>, NSIS for making Windows Installers</p> ]]></content:encoded> </item> <item><title>By: Umesh</title><link>http://mohanjith.net/blog/2007/08/makensis-on-linux.html/comment-page-1#comment-10858</link> <dc:creator>Umesh</dc:creator> <pubDate>Wed, 28 Oct 2009 06:12:13 +0000</pubDate> <guid
isPermaLink="false">http://mohanjith.net/wordpress/?p=18#comment-10858</guid> <description>Hi,I Just want to know whether can we create a installer package for linux using NSIS.</description> <content:encoded><![CDATA[<p>Hi,</p><p> I Just want to know whether can we create a installer package for linux using NSIS.</p> ]]></content:encoded> </item> <item><title>By: jcomeau_ictx</title><link>http://mohanjith.net/blog/2007/08/makensis-on-linux.html/comment-page-1#comment-11</link> <dc:creator>jcomeau_ictx</dc:creator> <pubDate>Thu, 10 Jan 2008 02:04:00 +0000</pubDate> <guid
isPermaLink="false">http://mohanjith.net/wordpress/?p=18#comment-11</guid> <description>Thanks, that works as far as it goes... but I&#039;m getting this:&lt;br/&gt;&lt;br/&gt; 2 warnings:&lt;br/&gt;  File /a is disabled for non Win32 platforms. (pcdinst.nsi:81)&lt;br/&gt;  File /a is disabled for non Win32 platforms. (pcdinst.nsi:82) &lt;br/&gt;&lt;br/&gt;It works anyway! Just letting everybody know to watch out for this...</description> <content:encoded><![CDATA[<p>Thanks, that works as far as it goes&#8230; but I&#8217;m getting this:</p><p> 2 warnings:<br
/> File /a is disabled for non Win32 platforms. (pcdinst.nsi:81)<br
/> File /a is disabled for non Win32 platforms. (pcdinst.nsi:82)</p><p>It works anyway! Just letting everybody know to watch out for this&#8230;</p> ]]></content:encoded> </item> </channel> </rss>
<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic
Page Caching using disk: basic (User agent is rejected)
Database Caching 5/24 queries in 0.016 seconds using memcached
Object Caching 0/0 objects using memcached
Content Delivery Network via cdn.mohanjith.net

Served from: mohanjith.net @ 2012-02-11 19:08:31 -->
