Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 125614 | Differences between
and this patch

Collapse All | Expand All

(-)src/Makefile.am (-1 / +1 lines)
Lines 18-24 Link Here
18
INCLUDES = -I..
18
INCLUDES = -I..
19
bin_PROGRAMS = rarfs
19
bin_PROGRAMS = rarfs
20
20
21
AM_CXXFLAGS = `pkg-config --cflags fuse` -g -pg
21
AM_CXXFLAGS = `pkg-config --cflags fuse`
22
AM_LDFLAGS = `pkg-config --libs fuse`
22
AM_LDFLAGS = `pkg-config --libs fuse`
23
23
24
rarfs_SOURCES = main.cc \
24
rarfs_SOURCES = main.cc \
(-)src/Makefile.in (-1 / +1 lines)
Lines 203-209 Link Here
203
top_builddir = @top_builddir@
203
top_builddir = @top_builddir@
204
top_srcdir = @top_srcdir@
204
top_srcdir = @top_srcdir@
205
INCLUDES = -I..
205
INCLUDES = -I..
206
AM_CXXFLAGS = `pkg-config --cflags fuse` -g -pg
206
AM_CXXFLAGS = `pkg-config --cflags fuse`
207
AM_LDFLAGS = `pkg-config --libs fuse`
207
AM_LDFLAGS = `pkg-config --libs fuse`
208
rarfs_SOURCES = main.cc \
208
rarfs_SOURCES = main.cc \
209
	rarblock.h\
209
	rarblock.h\
(-)src/main.cc (+4 lines)
Lines 18-23 Link Here
18
 */
18
 */
19
#define FUSE_USE_VERSION 25
19
#define FUSE_USE_VERSION 25
20
20
21
#include <cstdlib>
21
#include <fuse.h>
22
#include <fuse.h>
22
#include <stdio.h>
23
#include <stdio.h>
23
#include <string.h>
24
#include <string.h>
Lines 193-199 Link Here
193
		exit(1);
193
		exit(1);
194
				
194
				
195
	if ( ! arc.Init(rarfile) )
195
	if ( ! arc.Init(rarfile) )
196
	{
197
		printf("USAGE: %s <file> <dir>\n", argv[0]);
196
		return -1;
198
		return -1;
199
	}
197
	
200
	
198
	rarfs_oper.getattr = rarfs_getattr;
201
	rarfs_oper.getattr = rarfs_getattr;
199
	rarfs_oper.readdir = rarfs_readdir;
202
	rarfs_oper.readdir = rarfs_readdir;
(-)src/rararchive.cc (+1 lines)
Lines 25-30 Link Here
25
// Created on: Sun Mar  5 00:40:27 2006
25
// Created on: Sun Mar  5 00:40:27 2006
26
//
26
//
27
27
28
#include <cstdlib>
28
#include "rararchive.h"
29
#include "rararchive.h"
29
#include <fstream>
30
#include <fstream>
30
#include <sstream>
31
#include <sstream>

Return to bug 125614