Skip to content

Commit

Permalink
newline removed from src/main.cpp, netbeans build files auto-changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Pavel Kraynyukhov committed Jun 13, 2018
1 parent fc33456 commit 32af462
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 4 deletions.
2 changes: 1 addition & 1 deletion nbproject/Makefile-Debug.mk
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ ${CND_DISTDIR}/${CND_CONF}/${CND_PLATFORM}/lapps: ../utils/dist/Debug/GNU-Linux/

${CND_DISTDIR}/${CND_CONF}/${CND_PLATFORM}/lapps: ${OBJECTFILES}
${MKDIR} -p ${CND_DISTDIR}/${CND_CONF}/${CND_PLATFORM}
g++ -pipe -Wall -pthread -O2 -mtune=native -march=native -fPIC -fstack-check -fstack-protector-strong -mfpmath=sse -msse2avx -ftree-vectorize -funroll-loops -o ${CND_DISTDIR}/${CND_CONF}/${CND_PLATFORM}/lapps ${OBJECTFILES} ${LDLIBSOPTIONS} -lcryptopp -ltls -lcrypto -lluajit-5.1
g++ -pipe -Wall -pthread -O2 -mtune=native -march=native -fPIC -fstack-check -fstack-protector-strong -mfpmath=sse -msse2avx -ftree-vectorize -funroll-loops -o ${CND_DISTDIR}/${CND_CONF}/${CND_PLATFORM}/lapps ${OBJECTFILES} ${LDLIBSOPTIONS} -lcryptopp -ltls -lcrypto -lluajit-5.1 -lbz2

${OBJECTDIR}/src/getLog.o: src/getLog.cpp nbproject/Makefile-${CND_CONF}.mk
${MKDIR} -p ${OBJECTDIR}/src
Expand Down
4 changes: 4 additions & 0 deletions nbproject/Package-Debug.bash
Original file line number Diff line number Diff line change
Expand Up @@ -315,6 +315,10 @@ cd "${TOP}"
makeDirectory "${NBTMPDIR}//usr/bin"
copyFileToTmpDir "${OUTPUT_PATH}" "${NBTMPDIR}/${PACKAGE_TOP_DIR}bin/${OUTPUT_BASENAME}" 0755

cd "${TOP}"
makeDirectory "${NBTMPDIR}//usr/bin"
copyFileToTmpDir "${OUTPUT_PATH}" "${NBTMPDIR}/${PACKAGE_TOP_DIR}bin/${OUTPUT_BASENAME}" 0755


# Create control file
cd "${TOP}"
Expand Down
8 changes: 7 additions & 1 deletion nbproject/configurations.xml
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@
</makeArtifact>
</linkerLibProjectItem>
</linkerLibItems>
<commandLine>-lcryptopp -ltls -lcrypto -lluajit-5.1</commandLine>
<commandLine>-lcryptopp -ltls -lcrypto -lluajit-5.1 -lbz2</commandLine>
</linkerTool>
<requiredProjects>
<makeArtifact PL="../utils"
Expand Down Expand Up @@ -591,6 +591,12 @@
perm="755"
owner="root"
group="bin"/>
<packFileListElem type="File"
to="${PACKAGE_TOP_DIR}bin/${OUTPUT_BASENAME}"
from="${OUTPUT_PATH}"
perm="755"
owner="root"
group="bin"/>
</packFileList>
<packInfoList>
<packInfoListElem name="Package" value="lapps" mandatory="true"/>
Expand Down
4 changes: 2 additions & 2 deletions src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
#include <wsServer.h>
#include <sys/Nanosleep.h>
#include <HTTPRequestParser.h>
#include <bz2Compression.h>

void startWSServer()
{
Expand Down Expand Up @@ -84,8 +85,7 @@ void startWSServer()
}

int main(int argc, char** argv)
{

{
itc::getLog()->info(__FILE__,__LINE__,"Starting LAppS");

if(argc > 1)
Expand Down

0 comments on commit 32af462

Please sign in to comment.